body{
	background-color: ivory;
}

header{
	background-color: #e0b1df;
	margin: 25px;
	padding: 20px;
	border-radius: 20px;
}

main{
	padding-bottom: 10px;
}

footer{
	background-color: #e0b1df;
	border-radius: 20px;
	width: 40%;
	margin-left: 30%;
}

p{
	font-size: 30px;
	padding-top: 10px;
}

.titulo{
	color: white;
	font-size: 20px;
}

.boton{
	background-color: #b895cc;
	color: white;
	padding: 30px;
	text-align: center;
	font-size: 20px;
	font-style: italic;
	cursor: pointer;
	display: block;
	border: 2px solid black;
	text-decoration: none;
	border-radius: 15px;
	margin: 10px;
	width: 500px;
	transition: background-color 0.4s ease, box-shadow 0.4s ease,
	color 0.4s ease, font-weight 0.4s ease;
}

.boton:hover{
	background-color: #bb64ed;
	box-shadow: 5px 5px 5px rgb(0,0,0);
	color: black;
	font-weight: bold;
}